home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr50 / vbprint.zip / VBPRINT.H < prev    next >
Text File  |  1993-05-07  |  897b  |  37 lines

  1.  
  2. // Demensions
  3.  
  4. #define QUARTER_INCH    25
  5. #define HALF_INCH        (2 * QUARTER_INCH)
  6. #define INCH            (4 * QUARTER_INCH)
  7. #define EIGHTH_INCH     ((int)(QUARTER_INCH /2))
  8.  
  9. // Defining printable characters
  10. #define FIRST_CHAR        32
  11. #define LAST_CHAR        255
  12.  
  13. // Font Size Limits
  14. #define MAX_FONT_SIZE    72                // Max is 72 Points
  15. #define MIN_FONT_SIZE    4                // Min is 4 Points
  16.  
  17. // Border Size Limits
  18. #define MAX_WIDTH_SIZE    8                // Max is 8 Points
  19. #define MIN_WIDTH_SIZE    1                // Min is 1 Point
  20.  
  21. // Column limits
  22. #define MAX_COLUMNS     8                // Max Number of columns is 8
  23.  
  24. // Print Styles for Paragraphs & Columns
  25. #define BOLD_FONT        0x0001
  26. #define ITALIC_FONT    0x0002
  27. #define TOP_BORDER        0x0004
  28. #define LEFT_BORDER    0x0008
  29. #define RIGHT_BORDER    0x0010
  30. #define BOTTOM_BORDER    0x0020
  31. #define CENTER_JUST    0x0040
  32. #define RIGHT_JUST        0x0080
  33. #define CHECK_BOX        0x0100
  34.  
  35. #define IDS_QUEUE_NAME    0x5000
  36.  
  37.